home *** CD-ROM | disk | FTP | other *** search
/ APC & TCP 4 / APC & TCP 4.iso / cdsystem / c / makefile < prev    next >
Makefile  |  1995-09-20  |  220b  |  16 lines

  1.  
  2. CC        = gcc
  3.  
  4. CFLAGS        = -V2.3.3 -O2 -msmall-code -fbaserel -fno-builtin
  5.  
  6. LFLAGS        = -noixemul -fbaserel
  7.  
  8. LDLIBS        = -lamiga -lmath
  9.  
  10. OBJS        = cc3.o img.o
  11.  
  12. # the game :)
  13.  
  14. CC3:        $(OBJS)
  15.         $(CC) $(LFLAGS) -o $@ $(OBJS) $(LDLIBS)
  16.